The parameter sample is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
18
19
/**
20
* Decode a 8-bit A-Law sample as 16-bit PCM.
21
* @param {number} aLawSample The 8-bit A-Law sample
The parameter aLawSample is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
25
26
/**
27
* Encode 16-bit linear PCM samples as 8-bit A-Law samples.
28
* @param {!Int16Array} samples A array of 16-bit PCM samples.
The parameter samples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
32
33
/**
34
* Decode 8-bit A-Law samples into 16-bit linear PCM samples.
35
* @param {!Uint8Array} samples A array of 8-bit A-Law samples.
The parameter samples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
39
40
// mu-Law
41
/**
42
* Encode a 16-bit linear PCM sample as 8-bit mu-Law.
The parameter sample is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
47
48
/**
49
* Decode a 8-bit mu-Law sample as 16-bit PCM.
50
* @param {number} muLawSample The 8-bit mu-Law sample
The parameter muLawSample is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
54
55
/**
56
* Encode 16-bit linear PCM samples into 8-bit mu-Law samples.
57
* @param {!Int16Array} samples A array of 16-bit PCM samples.
The parameter samples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
61
62
/**
63
* Decode 8-bit mu-Law samples into 16-bit PCM samples.
64
* @param {!Uint8Array} samples A array of 8-bit mu-Law samples.
The parameter samples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.